메인 콘텐츠로 건너뛰기
POST
/
settings
/
logo
Upload site logo
curl --request POST \
  --url https://your_a2_service/settings/logo \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file'
{
  "file_path": "<string>",
  "url": "<string>",
  "thumb_path": "<string>",
  "thumb_url": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.aiderx.io/llms.txt

Use this file to discover all available pages before exploring further.

인증

Authorization
string
header
필수

The access token received from the authorization server in the OAuth 2.0 flow.

본문

multipart/form-data
file
file
필수

사용할 로고 파일

응답

FileUploadResult · object | null

Successful Response

파일 업로드 결과 스키마

file_path
string
필수

파일이 서버에 저장된 전체 경로

url
string
필수

업로드된 파일에 접근할 수 있는 URL

thumb_path
string | null

썸네일이 서버에 저장된 전체 경로

thumb_url
string | null

업로드된 썸네일에 접근할 수 있는 URL